Needed Libs/Packages:
1. Tkinter - install with python

2. Serial
	pip install pyserial

3. PyInstaller (For making release package) (*** Add python scripts dir to $PATH ***)
	pip install pyinstaller

To make a release:  (Windows exe file)
	1. With console window
		pyinstaller --clean -F ArmCtrl.py
	2. Without console window
		pyinstaller --clean --noconsole -F ArmCtrl.py



